home *** CD-ROM | disk | FTP | other *** search
- // -[KeepHeading]-
-
-
- // -[Copyright]-
-
- /**
- *
- */
- import java.lang.*;
-
-
- // -[KeepBeforeClass]-
-
-
- // -[Class]-
-
- /**
- * @jTitle Client
- * @jAuthor Chris Colman
- * @jOverridability can be overridden
- * @jDescription
- * A person who can hire a video.
- *
- * @see Person
- */
- public
- class Client extends Person
- {
- // -[KeepWithinClass]-
-
-
- // -[Fields]-
-
-
-
- /**
- * NoDesc
- */
- protected int memberId;
-
-
- // -[Methods]-
-
- /**
- * Describe here
- */
- public void hireVideo()
- {
- // Store the videoId against this person.
- }
-
- }
-
-
-